home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / frexxed / fpl / writeascii.fpl < prev    next >
Text File  |  1995-07-18  |  201b  |  8 lines

  1. export int WriteASCII()    /* Enter a ASCII value */
  2. {
  3.   string ascii=PromptString("Give ASCII");
  4.   if (strlen(ascii))
  5.     Output(itoc(strtol(ascii, 0)));
  6. }
  7. AssignKey("WriteASCII();", "Amiga Control a");
  8.